home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib6
/
v_08_05
/
8n05074a
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
157 b
|
12 lines
Listing 2:
show()
{
auto int ir;
register int *address_of_ir;
ir = 7;
address_of_ir = &ir;
printf("In show, i = %d\n", *address_of_ir);
}